@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
@font-face{
    font-family: "Futura";
    src: url('../font/FuturaBT-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "SRegular";
    src: url('../font/SourceHanSans-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "SMedium";
    src: url('../font/SourceHanSans-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
 /* header */
header{
    width:100%;
    height: 100px;
    box-shadow:0 5px 15px -5px #cecece;
    position: relative;
    z-index: 10;
    background-color: #f0f0f4;
}
.logo{
    float: left;
    width: 422px;
    margin-top: 11px;
}
.logo img{
    display: block;
    width: 100%;
}
.nav{
    float: right;
    margin-top: 29px;
}
.nav-ul li{
    float: left;
    margin-right: 70px;
}
.nav-ul li:last-child{
    margin-right: 0px;
}
.nav-ul li > a{
    line-height: 42px;
    font-size: 16px;
    color: #000;
    transition: all 0.3s;
}
.nav-ul li.lan-item a{
    display: block;
    width: 44px;
    height: 42px;
    color: #fff;
    background-color: #6f7368;
    text-align: center;
    font-family: "Arial";
}
.nav-ul li:hover>a, .nav-ul li.nav-active > a{
    color: #6f7368;
}
.navToggle{
    margin-top: 25px;
}
@media(max-width:1400px){
    .nav-ul li{
        margin-right: 32px;
    }
}
@media(max-width:1200px){
    .nav-ul li{
        margin-right: 18px;
    }
    .logo{
        width: 300px;
        margin-top: 22px;
    }
}
@media(max-width:991px){
    header{
        height: 70px;
        position: relative;
    }
    .nav{
        display: none;
    }
    .logo{
        margin-top: 7px;
    }
}
@media(max-width:600px){
    .logo{
        width:240px;
        margin-top:13px;
    }
}
/* 关于我们 */
.public-module{
    padding-top: 100px;
    padding-bottom: 100px;
}
.habout-main{
    display: flex;
    margin-bottom: 40px;
}
.habout-img{
    width: 50%;
    overflow: hidden;
}
.habout-img img{
    display: block;
    width: 100%;
    transition: all .6s;
}
.habout-img:hover img{
    transform: scale(1.1);
}
.habout-detail{
    width: 50%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.habout-info h2{
    font-size: 42px;
    color: #222;
    font-weight: bold;
    line-height: 42px;
    margin-bottom: 30px;
}
.habout-info i{
    display: block;
    width: 82px;
    height: 4px;
    background-color: #6f7368;
    margin-bottom: 50px;
}
.habout-txt{
    font-size: 16px;
    color: #333;
    line-height: 32px;
}
.habout-txt p:first-child{
    margin-bottom: 18px;
}
.habout-txt p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
}
.more-about{
    display: block;
    width: 170px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    color: #fff;
    background-color: #6f7368;
    border-radius: 5px;
}
.hbaout-list{
    display: flex;
    justify-content: space-between;
}
.hbaout-list li{
    flex: 1;
    margin-right: 40px;
    text-align: center;
    background-color: #fff;
    transition: all .6s;
    box-shadow: 0px 0px 10px #f3f3f3;
    padding: 36px 15px 24px;
    cursor: pointer;
}
.hbaout-list li:last-child{
    margin-right: 0px;
}
.habout-num{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 4px;
    color: #000;
}
.habout-num span{
    font-weight: bold;
    font-size: 48px;
    line-height: 48px;
    color: #6f7368;
    padding-right: 9px;
}
.hbaout-list li p{
    font-size: 16px;
    color: #333;
    line-height: 24px;
    min-height: 48px;
}
.hbaout-list li:hover {
    background-color: #6f7368;
}
.hbaout-list li:hover .habout-num{
    color: #fff;
}
.hbaout-list li:hover .habout-num span{
    color: #fff;
}
.hbaout-list li:hover p{
    color: #fff;
}
@media(max-width: 1400px){
    .habout-info i{
        margin-bottom: 32px;
    }
    .habout-txt{
        line-height: 28px;
    }
}
@media(max-width: 1200px){
    .habout-info h2{
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 18px;
    }
    .habout-info i{
        width: 58px;
        margin-bottom: 25px;
    }
    .habout-txt{
        font-size: 14px;
        line-height: 24px;
    }
    .habout-txt p:first-child{
        margin-bottom: 10px;
    }
    .habout-txt p{
        -webkit-line-clamp: 5;
    }
    .public-module{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .hbaout-list li{
        margin-right: 20px;
    }
}
@media(max-width: 991px){
    .habout-main{
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .habout-img{
        width: 100%;
        max-width: 700px;
        margin: 0 auto 30px;
    }
    .habout-detail{
        width: 100%;
        padding-left: 0px;
    }
    .habout-info h2{
        font-size: 30px;
        margin-bottom: 12px;
    }
    .habout-txt{
        margin-bottom: 30px;
    }
    .habout-txt p{
        -webkit-line-clamp: 20;
    }
    .hbaout-list{
        flex-wrap: wrap;
    }
    .hbaout-list li{
        flex: none;
        width: 48%;
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .public-module{
        padding-top: 60px;
        padding-bottom: 40px;
    }
}
@media(max-width: 599px){
    .hbaout-list li{
        width: 100%;
    }
    .public-module{
        padding-top: 45px;
        padding-bottom: 25px;
    }
}
/* 产品中心 */
.home-pro{
    background-color: #f0f0f4;
}
.hpro-ul{
    margin-left: -13px;
    margin-right: -13px;
}
.hpro-ul li{
    float: left;
    width: 33.33333%;
    padding: 0 13px;
}
.hpro-item{
    background-color: #fff;
    width: 100%;
    padding-top: 82px;
    padding-bottom: 76px;
}
.hpro-title{
    text-align: center;
    margin-bottom: 92px;
}
.hpro-title h4{
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 24px;
}
.hpro-title span{
    width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    display: block;
    background-color: #313131;
    margin: 0 auto;
    border-radius: 20px;
    transition: all .6s;
}
.hpro-img{
    width: 100%;
}
.hpro-img img{
    display: block;
    width: 100%;
    transition: all .6s;
}
.hpro-item:hover .hpro-title span{
    background-color: #6f7368;
}
.hpro-item:hover .hpro-img img{
    transform: scale(1.1);
} 
@media(max-width: 1200px){
    .hpro-title{
        margin-bottom: 60px;
    }
}
@media(max-width: 991px){
    .hpro-ul li{
        width: 100%;
        float: none;
    }
    .hpro-item{
        padding-top: 40px;
        padding-bottom: 40px;
        margin-bottom: 28px;
    }
    .hpro-title h4{
        font-size: 30px;
        line-height: 32px;
    }
}
/* 技术实力 */
.htech-title{
    text-align: center;
}
.htech-title h2{
    font-size: 42px;
    line-height: 42px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}
.htech-title p{
    color: #666;
}
.htech-main{
    margin-top: 75px;
}
/* 新闻中心 */
.home-news{
    padding-bottom: 100px;
}
.hnews-title{
    padding-bottom: 40px;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 40px;
}
.hnews-title h2{
    float: left;
    font-size: 42px;
    line-height: 42px;
    font-weight: bold;
    color: #000;
}
.more-news{
    float: right;
    display: block;
    width: 170px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background-color: #313131;
    color: #fff;
    border-radius: 5px;
}
.hnews-main{
    display: flex;
}
.hnews-left{
    width: 50%;
}
.hnews-item{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.hnews-item img{
    width: 100%;
    display: block;
    transition: all .6s;
}
.hnews-item p{
    /* width: 100%; */
    position: absolute;
    left: 0px;
    bottom: 30px;
    padding-left: 45px;
    font-size: 24px;
    color: #fff;
    width: calc(100% - 110px);
}
.hnews-item:hover img{
    transform: scale(1.1);
}
.hnews-swiper .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    position: relative;
}
.hnews-swiper .swiper-pagination{
    text-align: right;
    padding-right: 35px;
}
.hnews-swiper .swiper-pagination-bullet-active{
    background-color: #80877f;
}
.hnews-swiper > .swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 7px;
}
.hnews-swiper > .swiper-pagination-bullets{
    bottom: 25px;
}
.hnews-right{
    width: 50%;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hnews-right li{
    flex: 1;
    margin-bottom: 18px;
    background-color: #f0f0f4;
    padding-left: 35px;
    padding-right: 90px;
    display: flex;
    transition: all .6s;
}
.hnews-right li a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hnews-right li:last-child{
    margin-bottom: 0px;
}
.hnews-right li h3{
    font-size: 18px;
    color: #333;
    line-height: 24px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hnews-right li span{
    display: block;
    color: #999;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
}
.pro-detail p >a{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}
.hnews-right li p{
    font-size: 16px;
    line-height: 24px;
    color: #707070;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.hnews-right li:hover, .hnews-right li.on{
    background-color: #6f7368;
}
.hnews-right li:hover h3, .hnews-right li.on h3{
    color: #fff;
}
.hnews-right li:hover span, .hnews-right li.on span{
    color: #fff;
}
.hnews-right li:hover p, .hnews-right li.on p{
    color: #fff;
}
@media(max-width: 1400px){
    .hnews-right li{
        padding-right: 35px;
    }
}
@media(max-width: 1200px){
    .hnews-item p{
        padding-left: 20px;
        font-size: 18px;
        line-height: 24px;
    }
    .hnews-right li{
        padding-right: 35px;
        padding-left: 20px;
    }
    .hnews-right{
        padding-left: 30px;
    }
    .hnews-right li h3{
        margin-bottom: 5px;
    }
    .hnews-right li span{
        line-height: 20px;
        margin-bottom: 5px;
    }
    .hnews-right li p{
        font-size: 14px;
        line-height: 20px;
    }
    .hnews-title h2{
        font-size: 36px;
    }
    .hnews-title{
        padding-bottom: 25px;
    }
    .home-news{
        padding-bottom: 80px;
    }
}
@media(max-width: 991px){
    .hnews-main{
        flex-wrap: wrap;
    }
    .hnews-left{
        width: 100%;
        max-width: 700px;
        margin: 0 auto 30px;
    }
    .hnews-right{
        width: 100%;
        padding-left: 0px;
    }
    .hnews-right li{
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    .hnews-right li:last-child{
        margin-bottom: 0px;
    }
    .hnews-right li h3{
        margin-bottom: 10px;
    }
    .hnews-right li span{
        margin-bottom: 10px;
    }
    .hnews-title h2{
        font-size: 30px;
    }
    .hnews-title{
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    .hnews-swiper .swiper-pagination{
        padding-right: 15px;
    }
    .hnews-swiper > .swiper-pagination-bullets{
        bottom: 15px;
    }
    .hnews-item p{
        bottom: 18px;
        font-size: 16px;
        line-height: 24px;
        padding-left: 15px;
    }
    .home-news{
        padding-bottom: 60px;
    }
}
@media(max-width: 599px){
    .hnews-right li{
        padding: 20px;
    }
    .hnews-swiper > .swiper-pagination-bullets{
        bottom: 15px;
    }
    .hnews-item p{
        bottom: 10px;
        font-size: 14px;
        line-height: 20px;
    }
    .more-news{
        width: 120px;
        height: 38px;
        line-height: 38px;
    }
    .hnews-title h2{
        line-height: 38px;
    }
    .home-news{
        padding-bottom: 50px;
    }
}
/* 底部 */
#footer{
    background-color: #333;
}
.footer-top{
    padding-top: 45px;
    padding-bottom: 36px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #555;
}
.footer-code{
    width: 90px;
}
.footer-code h3{
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 16px;
}
.footer-code img{
    width: 90px;
    height: 90px;
}
.footer-ul{
    width: calc(100% - 260px);
    display: flex;
    justify-content: space-between;
}
.footer-ul li h3 a{
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    display: block;
    margin-bottom: 9px;
}
.footer-dl dd{
    font-size: 14px;
    line-height: 26px;
    color: #a6a6a6;
}
.footer-copy{
    padding-top: 28px;
    padding-bottom: 28px;
    display: flex;
    justify-content: space-between;
    line-height: 24px;
    color: #a6a6a6;
    font-size: 14px;
}
@media(max-width: 1200px){
    .footer-ul{
        width: calc(100% - 200px);
    }
}
@media(max-width: 991px){
    .footer-top{
        flex-wrap: wrap;
        padding-top: 35px;
        padding-bottom: 30px;
    }
    .footer-ul{
        width: 100%;
        flex-wrap: wrap;
    }
    .footer-ul li{
        width: 100%;
        text-align: center;
    }
    .footer-dl {
        text-align: center;
        margin-bottom: 15px;
    }
    .footer-dl dd{
        display: inline-block;
    }
    .footer-code{
        margin: 0 auto;
        text-align: center;
    }
    .footer-copy{
        flex-wrap: wrap;
        padding: 15px 0px;
    }
    .footer-copy p{
        width: 100%;
        text-align: center;
    }
}
/* 关于我们 */
.inside-nav{
    background-color: #eaedf2;
    padding: 23px 0px;
}
.inside-ul{
    text-align: center;
}
.inside-ul li{
    display: inline-block;
    margin-right: 120px;
}
.inside-ul li:last-child{
    margin-right: 0px;
}
.inside-ul li a{
    display: block;
    width: 180px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #333;
    background-color: transparent;
    border-radius: 5px;
    transition: all .6s;
}
.inside-ul li:hover a, .inside-ul li.on a{
    background-color: #6f7368;
    color: #fff;
}
.inside-main {
    padding-top: 100px;
    padding-bottom: 100px;
}
.inside-title{
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    line-height: 42px;
    margin-bottom: 50px;
}
.about-txt{
    font-size: 16px;
    line-height: 32px;
    text-indent: 32px;
}
.about-txt p{
    margin-bottom: 18px;
}
.about-txt p:last-child{
    margin-bottom: 0px;
}
.about-img{
    margin-top: 32px;
}
.about-img-item{
    width: calc(50% - 25px);
    float: left;
    overflow: hidden;
}
.about-img .about-img-item:last-child{
    float: right;
}
.about-img-item img{
    width: 100%;
    display: block;
    transition: all .6s;
}
.about-img-item:hover img{
    transform: scale(1.1);
}
@media(max-width: 1400px){
    .inside-ul li{
        margin-right: 60px;
    }
}
@media(max-width: 1200px){
    .inside-ul li{
        margin-right: 20px;
    }
    .inside-ul li a{
        width: auto;
        padding: 0 40px;
    }
    .inside-main {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .inside-title{
        font-size: 36px;
        line-height: 38px;
        margin-bottom: 50px;
    }
}
@media(max-width: 991px){
    .inside-main {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .inside-title{
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 30px;
    }
    .about-img-item{
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }
    .about-img-item:last-child{
        margin-bottom: 0px;
    }
    .inside-ul li a{
        padding: 0 30px;
    }
}
@media(max-width: 599px){
    .inside-nav{
        padding: 15px 0px;
    }
    .inside-ul li{
        margin-right: 0px;
    }
    .inside-ul li a{
        padding: 0 15px;
        height: 40px;
        line-height: 40px;
    }
    .inside-main {
        padding-top: 40px;
        padding-bottom: 50px;
    }
}
/* 产品 */
.pro-title{
    text-align: center;
    margin-bottom: 55px;
}
.pro-title .inside-title{
    margin-bottom: 35px;
}
.pro-title p{
    line-height: 24px;
    font-size: 16px;
}
.pro-item{
    width: 100%;
    margin-bottom: 12px;
}
.pro-main{
    padding-bottom: 0px;
}
.pro-img{
    width: 100%;
    overflow: hidden;
}
.pro-img img{
    width: 100%;
    display: block;
    transition: all .6s;
}
.pro-item:hover .pro-img img{
    transform: scale(1.1);
}
.pro-item p{
    text-align: center;
    line-height: 60px;
}
.pro-item:hover p{
    color: #6f7368;
}
.public-more{
    display: block;
    width: 240px;
    height: 52px;
    line-height: 52px;
    color: #fff;
    margin: 60px auto 60px;
    padding-left: 42px;
    background: #6f7368 url(../img/more_arrow.png) no-repeat right 42px center;
    background-size: 32px 16px;
    transition: all .5s;
}
.public-more:hover{
    background: #6f7368 url(../img/more_arrow.png) no-repeat right 32px center;
}
.load-more{
    margin-top: 28px;
}
@media(max-width: 767px){
    .pro-item p{
        line-height: 48px;
    }
    .pro-item{
        margin-bottom: 0px;
    }
    .pro-title .inside-title{
        margin-bottom: 20px;
    }
    .pro-title{
        margin-bottom: 30px;
    }
    .load-more{
        margin-bottom: 45px;
    }
}
/* 新闻 */
.news-list li{
    width: 100%;
    background-color: #f0f0f4;
    transition: all .6s;
    padding: 56px 30px;
    margin-bottom: 40px;
}
.news-list li:last-child{
    margin-bottom: 0px;
}
.news-list li a{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.news-left{
    width: calc(100% - 190px);
}
.news-left h3{
    font-size: 24px;
    line-height: 26px;
    color: #111;
    margin-bottom: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-left p{
    font-size: 16px;
    line-height: 200%;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
}
.news-time{
    width: 114px;
}
.news-time span{
    display: block;
    font-size: 18px;
    color: #666;
    margin-top: 6px;
    margin-bottom: 26px;
}
.news-more{
    width: 114px;
    background-color: #6f7368;
    height: 44px;
    line-height: 44px;
    text-align: center;
    color: #fff;
}
.news-list li:hover{
    background-color: #6f7368;
}
.news-list li:hover .news-left h3{
    color: #fff;
}
.news-list li:hover .news-left p{
    color: #fff;
}
.news-list li:hover .news-time span{
    color: #fff;
}
.news-list li:hover .news-more{
    color: #6f7368;
    background-color: #fff;
}
@media(max-width: 1200px){
    .news-list li{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .news-left{
        width: calc(100% - 150px);
    }
}
@media(max-width: 991px){
    .news-list li{
        margin-bottom: 30px;
        padding: 25px;
    }
    .news-left{
        width: calc(100% - 150px);
    }
    .news-list li a{
        flex-direction: column-reverse;
    }
    .news-time{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    .news-time span{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .news-more{
        height: 36px;
        line-height: 36px;
    }
    .news-left{
        width: 100%;
    }
}
@media(max-width: 599px){
    .news-left h3{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 12px;
    }
    .news-left p{
        font-size: 14px;
        line-height: 24px;
    }
    .public-more{
        margin-top: 40px;
        margin-bottom: 45px;
    }
}
/*首页技术实力*/
.htech-swiper .swiper-slide img{
    width: 100%;
    display: block;
}
.htech-swiper .swiper-slide{
    width:50%;
}
.htech-swiper .swiper-slide a{
    position: relative;
    display: block;
}
.htech-swipertxt{
    position: absolute;
    color: #fff;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}
.htech-swipertxt h3{
    font-size: 30px;
    text-align: center;
}
.htech-swipertxt h4{
    width: 180px;
    height: 40px;
    border-radius: 20px;
    background: #6f7368;
    color: #fff;
    line-height: 40px;
    text-align: center;
    margin-top: 28px;
} 
.htech-swipertxt{
    display: none;
}
.htech-swiper .swiper-slide-active .htech-swipertxt{
    display: block;
}   
.htech-swiper .swiper-button-prev{
    background:#6f7368 url(../img/htech-prev.png) no-repeat center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    left: 28%;
}
.htech-swiper .swiper-button-prev:hover{
    background:#313131 url(../img/htech-prev.png) no-repeat center;
}
.htech-swiper .swiper-button-next{
    background:#6f7368 url(../img/htech-next.png) no-repeat center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    right: 28%;
}
.htech-swiper .swiper-button-next:hover{
    background:#313131 url(../img/htech-next.png) no-repeat center;
}
@media(max-width:768px){
    .htech-swiper .swiper-button-prev{
        left: 5%;
        width: 40px;
        height: 40px;
    }
    .htech-swiper .swiper-button-next{
        right: 5%;
        width: 40px;
        height: 40px;
    }
    .htech-swipertxt h3{
        font-size: 22px;
    }
    .htech-swipertxt h4{
        margin-top: 15px;
    }
    .htech-swipertxt{
        bottom: 20px;
    }
    .htech-title h2{
        font-size: 30px;
    }
    .htech-title p{
        padding: 0 15px;
    }
    .htech-main {
        margin-top: 30px;
    }
}
.pro-detail{
    padding-bottom: 80px;
}
@media(max-width:991px){
    .pro-detail{
        padding-bottom: 40px;
    }
}
/* 联系我们 */
.contact-main{
    padding-bottom: 60px;
}
.contact-cont{
    overflow: hidden;
}
.contact-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f3f3f3;
    justify-content: center;
}
.contact-info dl dt{
    font-size: 24px;
    color: #3258a6;
    margin-bottom: 25px;
}
.contact-info dl dd{
    line-height: 30px;
    color: #666;
    font-size: 16px;
}
.contact-img{
    overflow: hidden;
    width: 100%;
}
.contact-img img{
    display: block;
    width: 100%;
}
.contact-ditu{
    margin-top: 28px;
    overflow: hidden;
    width: 100%;
}
.contact-ditu img{
    display: block;
    width: 100%;
}
@media(max-width: 1200px){
    .contact-info dl dt{
        margin-bottom: 15px;
    }
}
@media(max-width: 991px){
    .col-xxs-12{
        width:100%;
    }
    .contact-info{
        padding: 30px 0px;
        margin-bottom: 15px;
    }
    .contact-main{
        padding-bottom: 40px;
    }
}
@media(max-width: 599px){
    .contact-main{
        padding-bottom: 30px;
    }
    .contact-ditu{
        margin-top: 15px;
    }
}